|
|
|
|
Style Property, ScrollingClass Class |
Defines the control's scrolling style.
Syntax ScrollingClass Class (Softelvdm.SftTabsNET)
VB |
Public Property Style As ScrollingStyle |
C# |
public ScrollingStyle Style { get; set; } |
C++ |
public: property ScrollingStyle Style { |
Property Value
The scrolling style.
Value |
Description |
|
0 | Scroll buttons are never shown and scrolling is not possible. | |
1 | Scroll buttons are always shown on the right (or bottom) of the control. | |
2 | Scroll buttons are always shown on the left (or top) of the control. | |
3 | Scroll buttons are shown on the right (or bottom) of the control if scrolling is possible. | |
4 | Scroll buttons are shown on the left (or top) of the control if scrolling is possible. | |
5 | Scroll buttons are hidden even if scrolling is possible. |
The default value is ScrollingStyle.None.
Comments
The Style property defines the control's scrolling style.
Depending on the scrolling style defined using the Style property, certain other properties may no longer apply and are ignored. The property dialogs can be used to determine if a scrolling type supports certain properties.
Not all tab control styles support scrollable tabs. The StyleInfo property can be used to determine if a tab control style supports scrolling. A scrollable tab control can only display one row of tabs. If the Style property is set to a value that defines a scrollable tab control, the Rows property is automatically set to 1 and the FillComplete property is set to False.